home *** CD-ROM | disk | FTP | other *** search
/ PC Graphics Unleashed / PC Graphics Unleashed.iso / ch18 / rtrace / csg.scn < prev    next >
Text File  |  1992-07-02  |  798b  |  35 lines

  1. eye 5 2 2
  2. at 0 0 0
  3. up 0 1 0
  4. fov 20
  5.  
  6. background 0.2 0.5 0.7     % light sky blue
  7. ambient mono 0.1    % dark grey
  8.  
  9. light point 3 5 4 white
  10.  
  11. %%%%% a simple CSG example
  12. surface matte red
  13. csg subtraction begin
  14.     csg subtraction    % of a box
  15.         surface matte white    % attributes of the
  16.         texture scale 0.2    % CSG object
  17.         checkers surface matte mono 0.3 translate 0.1 0.1 0.1
  18.         data begin
  19.         box 0 0 0 1 1 1
  20.     csg next    % with another box and cylinder
  21.         box 0 0 0 1.01 0.5 0.5
  22.         cylinder 0 2 0 0 -2 0 0.5
  23.     csg end
  24. csg next        % and with 4 spheres
  25.     sphere 1 1 1 0.5
  26.     sphere surface matte blue data 1 -1 1 0.5
  27.     sphere 1 1 -1 0.5
  28.     sphere surface matte blue data 1 -1 -1 0.5
  29. csg end
  30.  
  31. %%%%% some text
  32. text3d file surface matte yellow data csg.t3d    % text data is in file
  33.  
  34. % that is all, folks
  35.